WriteLine(String,Object[]) Method
In This Topic
Writes a formatted string followed by a line terminator to the debugger by using the OutputDebugString function.
Syntax
'Declaration
Public Overloads Shared Sub WriteLine( _
ByVal As String, _
ByVal ParamArray () As Object _
)
public static void WriteLine(
string ,
params object[]
)
Parameters
- format
- A composite format string that contains text intermixed with zero or more format items, which correspond to objects in the args array.
- args
- An object array containing zero or more objects to format.
See Also